home *** CD-ROM | disk | FTP | other *** search
/ Tech Win 1995 November / CD [TECH_B].bin / tech_b / delphi / trial / disk11 / format.pak / FORMAT.DPR < prev    next >
Encoding:
Text File  |  1995-08-08  |  257 b   |  15 lines

  1. program Format;
  2.  
  3. uses
  4.   Forms,
  5.   Floats in 'FLOATS.PAS' {FloatForm},
  6.   Dates in 'DATES.PAS' {DateForm};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TFloatForm, FloatForm);
  12.   Application.CreateForm(TDateForm, DateForm);
  13.   Application.Run;
  14. end.
  15.